From d9f69f287c942760b512167e6b62bea6359582dd Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Sat, 28 Oct 2006 12:15:40 +0100 Subject: [PATCH] The structure fields should be exactly as documented, including case matching. Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendAPI.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/python/xen/xend/XendAPI.py b/tools/python/xen/xend/XendAPI.py index bed2c9ecf8..f921b92e90 100644 --- a/tools/python/xen/xend/XendAPI.py +++ b/tools/python/xen/xend/XendAPI.py @@ -930,11 +930,11 @@ class XendAPI: 'actions_after_reboot': xeninfo.get_on_reboot(), 'actions_after_suspend': xeninfo.get_on_suspend(), 'actions_after_crash': xeninfo.get_on_crash(), - 'vifs': xeninfo.get_vifs(), - 'vbds': xeninfo.get_vbds(), - 'vtpms': xeninfo.get_vtpms(), + 'VIFs': xeninfo.get_vifs(), + 'VBDs': xeninfo.get_vbds(), + 'VTPMs': xeninfo.get_vtpms(), 'bios_boot': xeninfo.get_bios_boot(), - 'platform_std_vga': xeninfo.get_platform_std_vga(), + 'platform_std_VGA': xeninfo.get_platform_std_vga(), 'platform_serial': xeninfo.get_platform_serial(), 'platform_localtime': xeninfo.get_platform_localtime(), 'platform_clock_offset': xeninfo.get_platform_clock_offset(), @@ -945,9 +945,9 @@ class XendAPI: 'kernel_initrd': xeninfo.get_kernel_initrd(), 'kernel_args': xeninfo.get_kernel_args(), 'grub_cmdline': xeninfo.get_grub_cmdline(), - 'pci_bus': xeninfo.get_pci_bus(), + 'PCI_bus': xeninfo.get_pci_bus(), 'tools_version': xeninfo.get_tools_version(), - 'otherconfig': xeninfo.get_other_config() + 'otherConfig': xeninfo.get_other_config() } return xen_api_success(record) -- 2.30.2